|
Server : LiteSpeed System : Linux host 5.15.0-161-generic #171-Ubuntu SMP Sat Oct 11 08:17:01 UTC 2025 x86_64 User : idnco5810 ( 1093) PHP Version : 8.2.29 Disable Function : NONE Directory : /var/lib/dpkg/info/ |
Upload File : |
#!/bin/sh
set -e
if [ "$1" = "remove" -o "$1" = "deconfigure" ]; then
for binary in php phar phar phar.phar; do
update-alternatives --remove ${binary} /usr/bin/${binary}8.1
done
fi
php_enable() { return 0; }
if [ "$1" = "remove" ]; then
if [ -e /usr/lib/php/php-maintscript-helper ]; then
. /usr/lib/php/php-maintscript-helper
mods=$(phpquery -M -v 8.1)
for mod in $mods; do
php_invoke dismod 8.1 cli $mod
done
else
for mod in /etc/php/8.1/cli/conf.d/*.ini; do
rm -f $mod
for ext in '~' '%' .bak .ucf-new .ucf-old .ucf-dist; do
rm -f $mod$ext
done
done
fi
fi
exit 0